Conversation
| # Modern Sphinx now errors instead of returning the default if there is not a value | ||
| # in any of the config files. |
There was a problem hiding this comment.
I think it is worse than that, new version of sphinx always return the default. It never looks in config files for things that are not theme, or options.
There was a problem hiding this comment.
Did that patch that? I need to learn how sphinx works in more detail.
There was a problem hiding this comment.
Well, the code will work but the comment is not technically correct. Sphinx 7.3.0 to 7.3.6 will indeed error.
But sphinx 7.3.7 and above will just ignore the config and return the default value (False in this case).
Basically sphinx removed support for custom sections.
There was a problem hiding this comment.
In that case, I will need to work out how to handle this in a manner that sphinx likes.
But for now, I will just ignore this and pretend it didn't break.
Fixes #277